Meta: Llama 3.2 90B Vision Instruct

meta-llama/llama-3.2-90b-vision-instruct

Created Sep 25, 20244,096 context
$0.8/M input tokens$1.6/M output tokens$5.146/K input imgs

The Llama 90B Vision model is a top-tier, 90-billion-parameter multimodal model designed for the most challenging visual reasoning and language tasks. It offers unparalleled accuracy in image captioning, visual question answering, and advanced image-text comprehension. Pre-trained on vast multimodal datasets and fine-tuned with human feedback, the Llama 90B Vision is engineered to handle the most demanding image-based AI tasks.

This model is perfect for industries requiring cutting-edge multimodal AI capabilities, particularly those dealing with complex, real-time visual and textual analysis.

Click here for the original model card.

Usage of this model is subject to Meta's Acceptable Use Policy.

Providers for Llama 3.2 90B Vision Instruct

OpenRouter routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

Apps using Llama 3.2 90B Vision Instruct

Top public apps this week using this model

1.
Favicon for https://github.com/veronica-bot
4.92M tokens
2.
Favicon for https://www.shortbreadapp.com/
3.09M tokens
3.
Favicon for https://sillytavern.app/
SillyTavern
LLM frontend for power users
1.93M tokens
4.
Favicon for https://cline.bot/
Cline
Autonomous coding agent right in your IDE
1.84M tokens
5.
Favicon for https://art-from-the-machine.github.io/
Mantella
Skyrim & Fallout 4 mod, naturally speak to NPCs
1.78M tokens
6.
Favicon for https://llm-data-generator-app.com/
865K tokens
7.
Favicon for https://miniapps.ai/
Miniapps.ai
Create and use mini AI-powered apps
791K tokens
8.
Favicon for https://openwebui.com/
Open WebUI
Extensible, self-hosted AI interface
777K tokens
9.
Favicon for https://chathub.gg/
723K tokens
10.
Favicon for https://chub.ai/
Chub AI
GenAI for everyone
697K tokens
11.
Favicon for https://t.me/
451K tokens
12.
Favicon for https://openrouter.ai/chat
OpenRouter: Chatroom
Chat with multiple LLMs at once
370K tokens
13.
Favicon for https://github.com/Demeter29/Voices_of_the_Court
348K tokens
14.
Favicon for https://audit.maxburst.com/
264K tokens

Recent activity on Llama 3.2 90B Vision Instruct

Tokens processed per day

Jan 1Jan 7Jan 13Jan 19Jan 25Jan 31Feb 6Feb 12Feb 18Feb 24Mar 2Mar 8Mar 14Mar 20Mar 26Apr 1025M50M75M100M

Uptime stats for Llama 3.2 90B Vision Instruct

Uptime stats for Llama 3.2 90B Vision Instruct across all providers

When an error occurs in an upstream provider, we can recover by routing to another healthy provider, if your request filters allow it.

Learn more about our load balancing and customization options.

Sample code and API for Llama 3.2 90B Vision Instruct

OpenRouter normalizes requests and responses across providers for you.

OpenRouter provides an OpenAI-compatible completion API to 300+ models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.

In the examples below, the OpenRouter-specific headers are optional. Setting them allows your app to appear on the OpenRouter leaderboards.

from openai import OpenAI

client = OpenAI(
  base_url="https://openrouter.ai/api/v1",
  api_key="<OPENROUTER_API_KEY>",
)

completion = client.chat.completions.create(
  extra_headers={
    "HTTP-Referer": "<YOUR_SITE_URL>", # Optional. Site URL for rankings on openrouter.ai.
    "X-Title": "<YOUR_SITE_NAME>", # Optional. Site title for rankings on openrouter.ai.
  },
  extra_body={},
  model="meta-llama/llama-3.2-90b-vision-instruct",
  messages=[
    {
      "role": "user",
      "content": [
        {
          "type": "text",
          "text": "What is in this image?"
        },
        {
          "type": "image_url",
          "image_url": {
            "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg"
          }
        }
      ]
    }
  ]
)
print(completion.choices[0].message.content)

Using third-party SDKs

For information about using third-party SDKs and frameworks with OpenRouter, please see our frameworks documentation.

See the Request docs for all possible fields, and Parameters for explanations of specific sampling parameters.

More models from Meta Llama

    Llama 3.2 90B Vision Instruct - API, Providers, Stats | OpenRouter